projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
768d104
)
(compilation-handle-exit): If process-status doesn't
author
Karl Heuer
<kwzh@gnu.org>
Sun, 21 Jan 1996 03:55:57 +0000
(
03:55
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Sun, 21 Jan 1996 03:55:57 +0000
(
03:55
+0000)
exist (e.g. on MSDOS), use an empty string.
lisp/progmodes/compile.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/compile.el
b/lisp/progmodes/compile.el
index 54945fe99838703a4577ccbb99fc8e5ba1fd1fbb..881fb5a2f93ebb9722f6f98c6662dfe098ecf2e0 100644
(file)
--- a/
lisp/progmodes/compile.el
+++ b/
lisp/progmodes/compile.el
@@
-601,7
+601,10
@@
See `compilation-mode'."
(forward-char 1)
(setq mode-line-process
(format ":%s [%s]"
- (process-status proc) (cdr status)))
+ (if (fboundp 'process-status)
+ (process-status proc)
+ "")
+ (cdr status)))
;; Force mode line redisplay soon.
(force-mode-line-update)
(if (and opoint (< opoint omax))